home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c-part1 / 9556 < prev    next >
Encoding:
Text File  |  1996-08-05  |  818 b   |  35 lines

  1. Path: news.azstarnet.com!usenet
  2. From: Howard Salmon <captarm@azstarnet.com>
  3. Newsgroups: comp.lang.c
  4. Subject: confusion between putchar and printf
  5. Date: 11 Mar 1996 19:31:35 GMT
  6. Organization: Arizona Daily Star - AZSTARNET
  7. Message-ID: <4i1v2n$30o@news.azstarnet.com>
  8. NNTP-Posting-Host: usr7ip9.azstarnet.com
  9. Mime-Version: 1.0
  10. Content-Type: text/plain; charset=us-ascii
  11. Content-Transfer-Encoding: 7bit
  12. X-Mailer: Mozilla 1.12(Macintosh; I; 68K)
  13. X-URL: news:comp.lang.c
  14.  
  15. K & R (section 1.5) states that "putchar(c) prints the contents of the 
  16. integer variable c as a character, usually on the screen".
  17.  
  18. Here's a small program that I wrote testing putchar.  Why doesn't it 
  19. compile?
  20.  
  21. #include <stdio.h>
  22. # define A "hello world!"
  23.  
  24. main()
  25. {
  26.     int c;
  27.     c =  A;
  28.     putchar(A);
  29. }
  30.  
  31. Thanks, 
  32.         Howard Salmon (captarm@azstarnet.com)
  33.  
  34.  
  35.